Node.child

Get the node's child at the given index, where zero represents the first child.

This method is fairly fast, but its cost is technically log(child_index), so you if you might be iterating over a long list of children, you should use [Node::children] instead.

struct Node
const @nogc nothrow
child
()

Return Value

Type: auto

A Nulllable!Node

Meta